home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / TASM V5 / ALIASWIN.PAK / ALIAS.ASM next >
Encoding:
Assembly Source File  |  1996-02-21  |  890 b   |  34 lines

  1. ;
  2. ;  alias.asm
  3. ;
  4. ;  Copyright (c) 1993 by Borland International, Inc.
  5. ;
  6. ;  This module will be tlib-ed into library.lib to define the aliases.
  7. ;
  8. ;  Part of the aliaswin example.
  9. ;
  10. ;  Build using the provided makefile using:
  11. ;    "make -B" or "make -B -DWIN16".
  12.  
  13. ; Alias records for newuser.c
  14.  
  15. alias <_Set_Coords>               =  <_SetCoords>
  16. alias <_Draw_Happy_Face>          =  <_DrawHappyFace>
  17. alias <_Print_Message>            =  <_PrintMessage>
  18.  
  19. ; Alias record for both 16 and 32 bit cppuser.cpp
  20.  
  21. alias <@SetCoords$ql>             =  <_SetCoords>
  22.  
  23. ; Alias records for cppuser.cpp, 16 bit.
  24.  
  25. alias <@DrawHappyFace$qpx5HDC__>  =  <_DrawHappyFace>
  26. alias <@PrintMessage$qpx5HDC__pc> =  <_PrintMessage>
  27.  
  28. ; Alias records for cppuser.cpp, 32 bit.
  29.  
  30. alias <@DrawHappyFace$qp5HDC__>   =  <_DrawHappyFace>
  31. alias <@PrintMessage$qp5HDC__pc>  =  <_PrintMessage>
  32.  
  33. end
  34.